
header {
  display: grid;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  grid-template-columns: 1fr auto 1fr;
  background-color: transparent;
  width: 100%;
  z-index: 999;
}
.menu-links {
  background-color: rgba(0,0,0,0.1);
  cursor: pointer;
  padding-left: 1.5mm;
  padding-right: 1.5mm;
  padding-bottom: 0.2mm;
  padding-top: 0.2mm;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  transition: 0.25s;
  display: inline-block;
  vertical-align: top;
  z-index: 999;
}

ul {
  display: flex;
  gap: 10px;
  list-style: none; /* removes bullets */
  margin: 0;
  padding: 0;
  z-index: 999;
}
.links,
a {
  color: black;
  display: inline-block;
  border-radius: 20;
  border-color: black;
  text-decoration: none;
  margin:0;
  z-index: 999;
}
.links:hover,
.menu-links:hover {
  background-color: black;
  color: white;
}
.links:active {
  opacity: 0.7;

}
.logo-image {
  justify-self: center;
  transition: 0.5s;
  vertical-align: top;
  z-index: 999;
}
.logo-image:hover {
  size: 28px;
  box-shadow: inset;
}
.menu-buttons {
  justify-self: start;
  z-index: 999;
}
.nav-right {
  width: 150px;
  justify-self: end;
  z-index: 999;
  padding-right: 20px;
}
